CommunitiesLoginControllerTest

Print
Apex classe Details
Name CommunitiesLoginControllerTest
Label CommunitiesLoginControllerTest
Status Active
Api Version 54
Apex Code
/**
 * An apex page controller that exposes the site login functionality
 */
@IsTest global with sharing class CommunitiesLoginControllerTest {
    @IsTest(SeeAllData=true) 
    global static void testCommunitiesLoginController () {
     	CommunitiesLoginController controller = new CommunitiesLoginController();
     	System.assertEquals(null, controller.forwardToAuthPage());       
    }    
}